home *** CD-ROM | disk | FTP | other *** search
- import java.util.TimerTask;
-
- class LogoCanvas$nextImageTimerTask extends TimerTask {
- // $FF: synthetic field
- private final LogoCanvas this$0;
-
- public LogoCanvas$nextImageTimerTask(LogoCanvas var1) {
- this.this$0 = var1;
- }
-
- public void run() {
- if (this.this$0.currentLogo == this.this$0.logos.length - 1) {
- this.this$0.display.setCurrent(this.this$0.next);
- } else {
- ++this.this$0.currentLogo;
- this.this$0.repaint();
- }
-
- }
- }
-